home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 July / EnigmA AMIGA RUN 20 (1997)(G.R. Edizioni)(IT)[!][issue 1997-07 & 08][EAR-CD IV].iso / earcd / dev / c / amcsrc2.lha / AMCSources2 / NeuralN / NNERROR.h < prev    next >
C/C++ Source or Header  |  1996-06-06  |  564b  |  34 lines

  1. /*
  2. *----------------------------------------------------------------------------
  3. *    file:    nnerror.h
  4. *    desc:    define all errors
  5. *    by:    patrick ko
  6. *    date:    2 aug 91
  7. *----------------------------------------------------------------------------
  8. */
  9.  
  10. #define    NNMALLOC    0
  11. #define NNTFRERR    1
  12. #define NNTFIERR    2
  13. #define NNIOLAYER    3
  14. #define NN2MANYLAYER    4
  15. #define NN2FEWPATT    5
  16. #define    NN2MANYHIDDEN    6
  17. #define    NNOUTNOTOPEN    7
  18. #define    NNRFRERR    8
  19.  
  20. /*
  21. *    prototype
  22. */
  23. #ifdef    __TURBOC__
  24.  
  25. int    error    (int);
  26. void    verbose    (char *, char *);
  27.  
  28. #else
  29.  
  30. int    error     ( );
  31. void    verbose    ( );
  32.  
  33. #endif
  34.